home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pine / imap-3.0 / ANSI / c-client / makefile.dwa < prev    next >
Encoding:
Makefile  |  1993-05-24  |  2.8 KB  |  89 lines

  1. # Program:    Portable C client makefile -- MS-DOS (Waterloo) version
  2. #
  3. # Author:    Mark Crispin
  4. #        Networks and Distributed Computing
  5. #        Computing & Communications
  6. #        University of Washington
  7. #        Administration Building, AG-44
  8. #        Seattle, WA  98195
  9. #        Internet: MRC@CAC.Washington.EDU
  10. #
  11. # Date:        11 May 1989
  12. # Last Edited:    24 May 1993
  13. #
  14. # Copyright 1993 by the University of Washington
  15. #
  16. #  Permission to use, copy, modify, and distribute this software and its
  17. # documentation for any purpose and without fee is hereby granted, provided
  18. # that the above copyright notice appears in all copies and that both the
  19. # above copyright notice and this permission notice appear in supporting
  20. # documentation, and that the name of the University of Washington not be
  21. # used in advertising or publicity pertaining to distribution of the software
  22. # without specific, written prior permission.  This software is made
  23. # available "as is", and
  24. # THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  25. # WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  26. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  27. # NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  28. # INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  29. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  30. # (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  31. # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  32.  
  33. CFLAGS=    -AL -Zi -Gy
  34.  
  35. all:    mtest.exe
  36.     
  37. .c.obj:
  38.     $(CC) -c $(CFLAGS) $*.c
  39.  
  40. osdep.h: os_dwa.h
  41.     copy os_dwa.h osdep.h
  42.  
  43. mtest.obj: mail.h smtp.h misc.h osdep.h mtest.c
  44.     cl -c $(CFLAGS) mtest.c
  45.  
  46. mail.obj: mail.h misc.h osdep.h mail.c
  47.     cl -c $(CFLAGS) mail.c
  48.  
  49. imap2.obj: mail.h imap2.h misc.h osdep.h imap2.c
  50.     cl -c $(CFLAGS) imap2.c
  51.  
  52. dawz.obj: mail.h dawz.h misc.h osdep.h dawz.c
  53.     cl -c $(CFLAGS) dawz.c
  54.  
  55. nntpcdos.obj: mail.h nntpcdos.h misc.h osdep.h nntpcdos.c
  56.     cl -c $(CFLAGS) nntpcdos.c
  57.  
  58. dummydos.obj: mail.h dummy.h misc.h osdep.h dummydos.c
  59.     cl -c -AL dummydos.c
  60.  
  61. smtp.obj: mail.h smtp.h rfc822.h misc.h osdep.h smtp.c
  62.     cl -c $(CFLAGS) smtp.c
  63.  
  64. nntp.obj: mail.h nntp.h smtp.h rfc822.h misc.h osdep.h nntp.c
  65.     cl -c $(CFLAGS) nntp.c
  66.  
  67. rfc822.obj: mail.h rfc822.h misc.h rfc822.c
  68.     cl -c $(CFLAGS) rfc822.c
  69.  
  70. misc.obj: mail.h misc.h misc.c
  71.     cl -c $(CFLAGS) misc.c
  72.  
  73. sm_dos.obj: mail.h misc.h sm_dos.c
  74.     cl -c $(CFLAGS) sm_dos.c
  75.  
  76. osdep.obj: mail.h osdep.h os_dwa.c
  77.     erase osdep.obj
  78.     cl -c $(CFLAGS) os_dwa.c
  79.     rename os_dwa.obj osdep.obj
  80.  
  81. cclient.lib: mail.obj imap2.obj dawz.obj nntpcdos.obj dummydos.obj smtp.obj \
  82.     nntp.obj misc.obj rfc822.obj sm_dos.obj osdep.obj
  83.     erase cclient.lib
  84.     lib cclient +mail+imap2+dawz+nntpcdos+dummydos+smtp+nntp+misc+rfc822+sm_dos+osdep;
  85.  
  86. mtest.exe: mtest.obj cclient.lib
  87.     link /NOI /stack:32767 mtest.obj,mtest.exe,,cclient.lib wattcplg.lib;
  88.  
  89.